home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / utility3 / makemdi2.zip / CLIENT.H < prev    next >
C/C++ Source or Header  |  1992-11-25  |  1KB  |  33 lines

  1. #ifndef _INC_CLIENT
  2. #define _INC_CLIENT
  3. // ==========================================================Purpose 
  4. // CLIENT.H - MDI Client window managment. 
  5. // 
  6. // MAKEMDI adaptation of Windows 3.1 SDK MAKEAPP system. 
  7. // 
  8. // MDI application design based on Chapter 7 of     
  9. // "Windows 3: A Developer's Guide" by Jeffrey Richter. 
  10. // 
  11. // Adaptation developed with permission of the author by  
  12. // John F. Holliday, Technisoft Corporation 
  13. // Telephone: (515) 472-9803, CompuServe: 71271,634 
  14. //
  15. // [DMM]    25-Nov-1992: Fixed crashing on exit
  16. //            Also tabified file to tabsize of 4
  17. //
  18. //            David M. Miller, Business Visions, Inc.
  19. //            Telephone: (212) 747-6118
  20. //            CompuServe: 72676,327
  21. //            internet: dmiller@hera.sbi.com
  22. // ==========================================================Private 
  23. #include "sheet.h"
  24. #include "chart.h"
  25.  
  26. // ===========================================================Public 
  27.  
  28. BOOL            Client_Initialize(APP * papp);
  29. void            Client_Terminate(APP * papp);
  30.  
  31. //--------------------------------------------------------------End 
  32. #endif                            // !_INC_CLIENT 
  33.